home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / pyshared / chardet / codingstatemachine.py < prev    next >
Text File  |  2006-10-21  |  2KB  |  57 lines

  1. ######################## BEGIN LICENSE BLOCK ########################
  2. # The Original Code is mozilla.org code.
  3. #
  4. # The Initial Developer of the Original Code is
  5. # Netscape Communications Corporation.
  6. # Portions created by the Initial Developer are Copyright (C) 1998
  7. # the Initial Developer. All Rights Reserved.
  8. #
  9. # Contributor(s):
  10. #   Mark Pilgrim - port to Python
  11. #
  12. # This library is free software; you can redistribute it and/or
  13. # modify it under the terms of the GNU Lesser General Public
  14. # License as published by the Free Software Foundation; either
  15. # version 2.1 of the License, or (at your option) any later version.
  16. # This library is distributed in the hope that it will be useful,
  17. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  19. # Lesser General Public License for more details.
  20. # You should have received a copy of the GNU Lesser General Public
  21. # License along with this library; if not, write to the Free Software
  22. # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  23. # 02110-1301  USA
  24. ######################### END LICENSE BLOCK #########################
  25.  
  26. from constants import eStart, eError, eItsMe
  27.  
  28. class CodingStateMachine:
  29.     def __init__(self, sm):
  30.         self._mModel = sm
  31.         self._mCurrentBytePos = 0
  32.         self._mCurrentCharLen = 0
  33.         self.reset()
  34.  
  35.     def reset(self):
  36.         self._mCurrentState = eStart
  37.  
  38.     def next_state(self, c):
  39.         # for each byte we get its class
  40.         # if it is first byte, we also get byte length
  41.         byteCls = self._mModel['classTable'][ord(c)]
  42.         if self._mCurrentState == eStart:
  43.             self._mCurrentBytePos = 0
  44.             self._mCurrentCharLen = self._mModel['charLenTable'][byteCls]
  45.         # from byte's class and stateTable, we get its next state
  46.         self._mCurrentState = self._mModel['stateTable'][self._mCurrentState * self._mModel['classFactor'] + byteCls]
  47.         self._mCurrentBytePos += 1
  48.         return self._mCurrentState
  49.  
  50.     def get_current_charlen(self):
  51.         return self._mCurrentCharLen
  52.  
  53.     def get_coding_state_machine(self):
  54.         return self._mModel['name']
  55.